]> git.r.bdr.sh - rbdr/super-polarity/blobdiff - Super Polarity/Actors/Ship.cs
I have the worst commits ever.
[rbdr/super-polarity] / Super Polarity / Actors / Ship.cs
index 502c22ed0b21efa8ea099a14d08e8f27be9a932c..2839c9738dcebb00ac93f2501bc73ab298ee9bdb 100644 (file)
@@ -11,7 +11,6 @@ namespace SuperPolarity
     {
         public enum Polarity : byte { Negative, Positive, Neutral };
 
-        protected uint HP;
         public Polarity CurrentPolarity;
         public uint MagneticRadius;
 
@@ -22,12 +21,14 @@ namespace SuperPolarity
 
         protected bool Magnetizing;
 
-        public Ship(Game newGame) : base(newGame) {
+        public Ship(SuperPolarity newGame) : base(newGame) {
             MagneticRadius = 250;
             RepelRadius = 100;
 
+            HP = 5;
+
             FleeVelocity = 5;
-            ActVelocity = 3;
+            ActVelocity = 2;
             ChargeVelocity = 1.5f;
             CurrentPolarity = Polarity.Neutral;
             Magnetizing = false;